home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 September / Electronic Clipper 1998-09.iso / Idea Source® / behind.dir / 00020_Script_rollover < prev    next >
Text File  |  1998-07-15  |  502b  |  37 lines

  1. on mouseenter me
  2.   set the visible of sprite (the spritenum of me -4) to false
  3.   updatestage
  4. end
  5.  
  6. on mouseleave me
  7.   set the visible of sprite (the spritenum of me -4) to true
  8.   set the visible of sprite (the spritenum of me -8) to true
  9.   updatestage  
  10. end
  11.  
  12. on mousedown me
  13.   set the visible of sprite (the spritenum of me -8) to false
  14.   updatestage
  15. end
  16.  
  17. on mouseup me
  18.   set the visible of sprite (the spritenum of me -8) to true
  19.   updatestage  
  20. end
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.